* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body,html {
      width: 100%;
      overflow-x: hidden;
      background: hsl(0, 18%, 97%);
    }
    
/*------------------------------------------------Navbar section--------------------------------------*/
     .navbar {
  height: 90px;
  width: 100%;
  background: #fff;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
  margin-left: 30px; 
}
.logo img {
  height: 90px; 
  width: auto;
  display: block;
}

/* Nav Links */
.nav-links {

  display: flex;
  align-items: center;
  gap: 50px;
}
.nav-links a {
  color: #050505;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #fb4306e1;
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Social Icons */
.right-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 40px;
}
.right-icons a {
  color: #050505;
  font-size: 20px;
  transition: 0.3s;
}
.right-icons a:hover {
  color: #fb4306e1;  
  transform: scale(1.2);
}

/* Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-right: 0; /* mobile me center ho jaye */
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .logo img {
    height: 60px;
    margin: 0;
  }

  /* ✅ Hide social icons on mobile */
  .right-icons {
    display: none;
  }
}

/*------------------------------------------------Services section--------------------------------------*/
     .services-section {
      position: relative;
      width: 100%;
      height: 70vh; /* kam height */
      background: url('../Uploads/services3.webp') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .services-overlay {
      position: absolute;
      background-color: rgba(0, 0, 0, 0.5);
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .services-content {
      position: relative;
      z-index: 2;
      color: #fff;
    } 

    .services-content h1,
    .services-content h2 {
      animation: zoomIn 1s ease forwards;
      opacity: 0;
    }

    .services-content h1 {
      font-size: 2.9rem;
      animation-delay: 0.3s;
    } 

  /* .services-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 30px 50px;    
  border-radius: 15px;
  animation: fadeInUp 1s ease-in-out;
  max-width: 90%;     
  box-sizing: border-box;
}

.services-content h1 {
  font-size: 48px;        
  margin-bottom: 10px;
  color: #ff6a00;
  animation: zoomIn 1s ease forwards;
      opacity: 0;
  animation-delay: 0.3s;
} */


    @keyframes zoomIn {
      0% {
        transform: scale(0.8);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .services-content h1 {
        font-size: 2rem;
      }

      .services-content h2 {
        font-size: 1rem;
      }

      .services-section {
        height: 40vh;
      }
    }

    @media (max-width: 480px) {
      .services-content h1 {
        font-size: 1.5rem;
      }

      .services-content h2 {
        font-size: 0.9rem;
      }

      .services-section {
        height: 35vh;
      }
    }



/*------------------------------------------------Container section--------------------------------------*/
.section-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.zoom-heading {
  font-size: 2.8rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
  
  
}

.content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

/* .content-block img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
} */
 .content-block img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


.text-box {
  flex: 1;
  padding: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  margin: 20px;
}

.img-left { flex-direction: row; }
.img-right { flex-direction: row-reverse; }

@media (max-width: 768px) {
  .content-block {
    flex-direction: column !important;
    text-align: center;
  }
  .text-box {
    padding: 20px;
    margin-top: 20px;
    text-align: left;
  }
}

/* --- Animation Styles --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.zoom {
  transform: scale(0.8);
}

.scroll-reveal.from-left {
  transform: translateX(-100px);
}

.scroll-reveal.from-right {
  transform: translateX(100px);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateX(0) scale(1) translateY(0);
}


/*------------------------------------------------Cards section--------------------------------------*/
.card-section {
  padding: 60px 20px;
  /* background-color: #f9f9f9; */
  margin-top: -40px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1400px;
  margin: auto;
}

.card {
  background: #fff;
  border-radius: 16px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 10px 25px rgba(12, 12, 12, 0.1);
  padding: 30px;
  width: calc(33.333% - 30px);
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
   color: rgb(101, 101, 210);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .card {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
  }
}

/*------------------------------------------------Services content section--------------------------------------*/
.al-extrusion-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.zoom-heading {
  color: rgb(101, 101, 210);
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 50px;
  animation: zoomIn 1s ease forwards;
  opacity: 0;
}

.al-extrusion-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.image-text-pair {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.image-text-pair img {
  width: 100%;
  max-width: 45%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.image-text-pair p {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  max-width: 50%;
}

/* Animations */
@keyframes slideFromLeft {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .image-text-pair {
    flex-direction: column;
    text-align: center;
  }

  .image-text-pair img,
  .image-text-pair p {
    max-width: 100%;
  }

  .image-text-pair p {
    padding-top: 10px;
  }
}
/*---------------------------------------------------Footer Section----------------------------------------*/
    .footer {
  /* margin-bottom: 20px; */
  background-color: #fbeee0;
  color: #333;
  padding: 60px 5% 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 280px;
  min-width: 250px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.footer-col.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #d35400;
  position: relative;
}

.footer hr {
  width: 50px;
  border: 1.5px solid #d35400;
  margin-bottom: 15px;
}

.footer p,
.footer li,
.footer a {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  text-decoration: none;
}

.footer li {
  list-style: none;
  margin-bottom: 6px;
}

.footer .quick-links {
  margin-left: 80px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px;
  background-color: #e8d8c0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    gap: 30px;
  }

  .footer .quick-links {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer hr {
    margin-left: auto;
    margin-right: auto;
  }
}







  .main-section {
      padding: 50px 20px;
      text-align: center;
    }

    .zoom-heading {
      font-size: 2.8em;
      font-weight: bold;
      margin-bottom: 50px;
      transform: scale(0.8);
      opacity: 0;
      transition: all 0.6s ease;
    }

    .zoom-heading.visible {
      transform: scale(1);
      opacity: 1;
    }

    .block {
      margin-bottom: 70px;
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.8s ease-out;
    }

    .block.visible {
      opacity: 1;
      transform: translateY(0);
    }

   .image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.image-item {
  width: 360px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 400px; /* fixed height for uniformity */
}

.image-item:hover {
  transform: translateY(-5px);
}

.image-item img {
  width: 100%;
  height: 280px; /* fix image height */
  object-fit: contain; /* or use 'cover' if you want cropping */
  padding: 10px;
}

.image-item .content {
  padding: 20px 15px 25px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  flex-grow: 1;
}

.image-item h3 {
  font-size: 1.2em;
  margin-bottom: 10px;

}

.image-item p {
  font-size: 0.95em;
  color: #555;
  margin: 0;
}



    @media (max-width: 992px) {
      .image-item {
        width: 45%;
      }
    }

    @media (max-width: 600px) {
      .image-item {
        width: 100%;
      }
    }










